home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / e / mailinglists / amigae.0294feb.archive / 000035_bkhouse!nkraft@bkhouse.cts.com_Thu, 10 Feb 94 01:20:28 PST.msg < prev    next >
Internet Message Format  |  1994-05-26  |  9KB

  1. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  2.       id <1s3n@bkhouse.cts.com>; Thu, 10 Feb 94 01:20:28 PST
  3. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  4.       id <1s38@bkhouse.cts.com>; Wed, 9 Feb 94 08:49:18 PST
  5. Date: Wed, 9 Feb 94 08:49:18 PST
  6. Message-Id: <9402091649.1s38@bkhouse.cts.com>
  7. In-Reply-To: <Pine.3.89.9402051254.B3301-0100000@blue.csi.cam.ac.uk>; (argusnet.amiga.amigae)
  8. Reply-To: nkraft@bkhouse.cts.com
  9. Organization: Argus Computing, San Diego, CA
  10. From: nkraft@bkhouse.cts.com (Norman Kraft)
  11. To: AmigaE@bkhouse.cts.com
  12. Subject: Re: I`m new here!
  13.  
  14. Dave Higginson wrote:
  15.  
  16. > On Tue, 1 Feb 1994 vaald@westminster.ac.uk wrote:
  17. > > And this month`s Amiga Shopper has a 2-page spread on E! Plus the address
  18. > > for this mailing list... Prepared to be swamped by requests asking how to
  19. > > access the CLI to compile E code! :) "What is ED?" ... "Hello World" in E...
  20. > Unfortunately the article was written before E changed to a listserv, so 
  21. > they have the wrong address anyway. I suspect this may turn out to be a 
  22. > headache for Norm more than anyone else :)
  23.  
  24. It's not really a headache at all. The amigae-request@bkhouse.cts.com
  25. address still works, it just refers everything to the listserv. Folks
  26. who mail a request to that address which does not include a valid 
  27. listserv request (such as SUBSCRIBE) will get a cheerful little note
  28. explaining how to use the listserv. 15 or so of these have gone out 
  29. already, just since Friday. 
  30.  
  31. We are getting a lot of new subscriptions all of a sudden, as well as a
  32. bunch of deletions, but since many of our list members are of the "strong,
  33. silent type", it remains to be seen what long term impact this will 
  34. have on the list. Right now the list is at just under 170 members, and 
  35. growing every week. It's been much more successful than I ever thought 
  36. it would be when I first started it last spring. Much like my garden, 
  37. I've really enjoyed watching it sprout, grow and mature.
  38.  
  39. Norm.
  40.  
  41. ----------------------------------------------------------------------------
  42. Norman Kraft                            INET  : nkraft@ucsd.edu (work)
  43. Peptide-T Clinical Trial                or try: nkraft@bkhouse.cts.com (home)
  44. HIV Neurobehavioral Research Center     UUCP  : ucsd!nkraft
  45. Dept of Psychiatry, School of Medicine  
  46. University of California, San Diego          Usual disclaimers...
  47. ----------------------------------------------------------------------------
  48. From donews!crash!plucky.ike.safb.af.mil!bwills Thu, 10 Feb 94 01:28:38 PST
  49. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  50.       id <1s6d@bkhouse.cts.com>; Thu, 10 Feb 94 01:28:38 PST
  51. Received: from crash by donews.cts.com with uucp
  52.     (Smail3.1.28.1 #18) id m0pUFxG-0001n2C; Wed, 9 Feb 94 09:31 EST
  53. Received: from kirk.safb.af.mil by crash.cts.com with smtp
  54.     (Smail3.1.28.1 #18) id m0pUFjw-0000F9C; Wed, 9 Feb 94 06:18 PST
  55. Received: from ike (ike [140.175.6.44]) by kirk.safb.af.mil (8.6.4/8.6.4) with SMTP id IAA05302 for <AmigaE@bkhouse.cts.com>; Wed, 9 Feb 1994 08:17:25 -0600
  56. Received: from plucky.safb.af.mil by ike (4.1/SMI-4.1)
  57.     id AA16808; Wed, 9 Feb 94 08:13:35 CST
  58. Received: by plucky.safb.af.mil (4.1/SMI-4.1)
  59.     id AA01155; Wed, 9 Feb 94 08:15:14 CST
  60. Date: Wed, 9 Feb 94 08:15:14 CST
  61. Message-Id: <9402091415.AA01155@plucky.safb.af.mil>
  62. From: bwills@plucky.safb.af.mil (Barry D Wills)
  63. To: 
  64. Subject: Re: Strings and Numbers and Things......Oh My!!
  65.  
  66. Hi, Jessie.
  67.  
  68. ~8>   I know in the Ref docs it tells how to change a string representation
  69. ~8> of a number to a number, but can you change a string rep. of a hex number
  70. ~8> into a hex number. 
  71.  
  72. A number's a number's a number, dude. :-)  A hex string is an 
  73. "image" of a binary number, and you have the luxury in E of 
  74. looking at the binary number in more than one form.  It's all 
  75. in the perspective.
  76.  
  77. ~8>   Also I haven't been able to find any mention of how to raise a number
  78. ~8> to a power.
  79.  
  80. PROC exp(n, p)
  81. /*-- Computes n**p. --*/
  82.   DEF i, x=1
  83.   FOR i:=1 TO p DOx:=x*n
  84. ENDPROC x
  85.  
  86. ~8>   The reason for the questions is that in the game I'm working on, I'm
  87. ~8> breaking the map down into a 16 x 16 grid with the lines to the grid
  88. ~8> representing where the vertical and horizontal walls would be.
  89.  
  90. Sounds like a job for...Multi-Dimensional Arrays in E! :-)
  91.  
  92. ~8>   I could use decimal instead of hex but I'm trying to keep my eventual
  93. ~8> data files as small as possible. Also being able to raise 2 to the diff
  94. ~8> powers would cut down on the code some.
  95.  
  96. Are you storing the data as binary or ascii?  In binary a 0
  97. byte takes up just as much room 255 byte.  Same rule applies
  98. to ints and longs.
  99.  
  100. ~8>   I don't have a lot done yet but if anyone's interested i could send them
  101. ~8> what I have so you could kinda see what I'm trying to do and maybe offer
  102. ~8> some suggestions on how to do some things better.
  103.  
  104. <*drool*> Aaaaah, E code!
  105.  
  106. Later.
  107. -- Barry
  108. From donews!crash!freenet.buffalo.edu!ac812 Thu, 10 Feb 94 01:34:38 PST
  109. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  110.       id <1ses@bkhouse.cts.com>; Thu, 10 Feb 94 01:34:38 PST
  111. Received: from crash by donews.cts.com with uucp
  112.     (Smail3.1.28.1 #18) id m0pUOqg-0001THC; Wed, 9 Feb 94 19:01 EST
  113. Received: from freenet.buffalo.edu by crash.cts.com with smtp
  114.     (Smail3.1.28.1 #18) id m0pUOUf-00002EC; Wed, 9 Feb 94 15:38 PST
  115. Received: from localhost (ac812@localhost) by freenet.buffalo.edu (8.6.4/8.6.4) id SAA09960; Wed, 9 Feb 1994 18:38:50 -0500
  116. Date: Wed, 9 Feb 1994 18:38:50 -0500
  117. Message-Id: <199402092338.SAA09960@freenet.buffalo.edu>
  118. Reply-To: ac812@freenet.buffalo.edu
  119. From: ac812@freenet.buffalo.edu (Matthew Hornyak)
  120. To: AmigaE@bkhouse.cts.com
  121. Subject: Re: Pointing to gadget
  122.  
  123.  
  124.  
  125. >
  126. >
  127. >>        ActivateGadget(g.gadgetid.0,requeststringwnd,NIL)
  128. >>        
  129. >    I believe the RKMS say do NOT use ActivateGadget on Gadtools
  130. >gadgets. Could be wrong, but I know you are not supposed to use other
  131. >stuff like DisableGadget on it. Find the proper tag and pass it to it with
  132. >SetGadgetAttrsA(). 
  133.  
  134. You may be wrong, because in the GadTools chapter of RKM Libraries, where
  135. it talks about Keyboard Equivalent behavior, it says to "use Intuition's
  136. ActivateGadget() call" with Text and Number Entry gadgets.
  137.  
  138. --
  139. ---------------->-Matthew Hornyak-ac812@freenet.buffalo.edu-<-----------------
  140. Please support the Bill Clinton mind fund.     |Super Bowl 25, 26, 27 and 28
  141. Because a mind is a terrible thing not to have.|GO BILLS in Super Bowl XXVIII
  142. From donews!crash!delphi.com!NES Thu, 10 Feb 94 01:35:18 PST
  143. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  144.       id <1sfo@bkhouse.cts.com>; Thu, 10 Feb 94 01:35:18 PST
  145. Received: from crash by donews.cts.com with uucp
  146.     (Smail3.1.28.1 #18) id m0pUPPg-0001NsC; Wed, 9 Feb 94 19:37 EST
  147. Received: from bos1c.delphi.com by crash.cts.com with smtp
  148.     (Smail3.1.28.1 #18) id m0pUPDo-0000UQC; Wed, 9 Feb 94 16:25 PST
  149. Received: from delphi.com by delphi.com (PMDF V4.2-11 #4520) id
  150.  <01H8OY3HOPR48ZHX49@delphi.com>; Wed, 9 Feb 1994 19:17:35 EST
  151. Date: Wed, 09 Feb 1994 19:17:35 -0500 (EST)
  152. Message-id: <01H8OY3HOZEQ8ZHX49@delphi.com>
  153. X-VMS-To: IN%"amigae@bkhouse.cts.com"
  154. MIME-version: 1.0
  155. Content-type: TEXT/PLAIN; CHARSET=US-ASCII
  156. Content-transfer-encoding: 7BIT
  157. From: NES@delphi.com
  158. To: amigae@bkhouse.cts.com
  159. Subject: MUI tools help
  160.  
  161. I am having trouble useing the Gadtoolsbox.
  162. I can create a window and I can covert it to e with sourcegen.
  163. My problem is..... I need some examples on how to read/write to the
  164. gadgets.
  165. Is thier a command like "getgadinfo" or "putgadinfo"?
  166. Eric   <NES@DELPHI.COM>
  167. From donews!crash!freenet.carleton.ca!ao443 Thu, 10 Feb 94 01:36:26 PST
  168. Received: by bkhouse.cts.com (V1.17-beta/Amiga)
  169.       id <1sh0@bkhouse.cts.com>; Thu, 10 Feb 94 01:36:26 PST
  170. Received: from crash by donews.cts.com with uucp
  171.     (Smail3.1.28.1 #18) id m0pURCh-0001prC; Wed, 9 Feb 94 21:32 EST
  172. Received: from freenet-news.carleton.ca by crash.cts.com with smtp
  173.     (Smail3.1.28.1 #18) id m0pUQkV-0000MaC; Wed, 9 Feb 94 18:03 PST
  174. Received: from freenet.carleton.ca by freenet-news.carleton.ca (4.1/SMI-4.0)
  175.     id AA20636; Wed, 9 Feb 94 21:03:39 EST
  176. Received: from localhost (ao443@localhost) by freenet.carleton.ca (8.6.4/8.6.4) id VAA05469; Wed, 9 Feb 1994 21:03:12 -0500
  177. Date: Wed, 9 Feb 1994 21:03:12 -0500
  178. Message-Id: <199402100203.VAA05469@freenet.carleton.ca>
  179. Reply-To: ao443@freenet.carleton.ca
  180. From: ao443@freenet.carleton.ca (Jason Maskell)
  181. To: AmigaE@bkhouse.cts.com
  182. Subject: Re: I`m new here!
  183.  
  184. >>Finally, has anyone got any tips for reading tooltypes? My efforts crash the
  185. >>system, but I don`t have the source at hand :(
  186. >
  187. >    I began a long time ago a program which needed tooltype reading. I gave
  188. >up this program (for the moment), but I can send to you the parts that you
  189. >are interested in. But the comments are in French !
  190. >
  191.     Actually,. tooltypes are really  easy. You just have to get around
  192. the lack of the amiga.lib functions in E. I have fully functional
  193. tooltypes code if anyone wants it? (hacked it up  for a commodity I made
  194. for a friend)
  195.  
  196.  
  197. --
  198. 'You see son, if this were Star Trek, we'd be negotiating with this Kobold.'
  199. - Unknown Angband Player